|
<TABLE> <TR> <TD></TD> </TR> </TABLE>
|
![]() Glad you asked! This is going to be like "show and tell" from now on. I'll show you the table and then tell you the code. I'll give an explanation of what it's doing as well. Here goes.
What I did was this: <TD WIDTH="50">Honk</TD> <TD WIDTH="100">if you're........</TD> The TD WIDTH=" " I used the number of pixels; you can also use percentages TD WIDTH="50%", though they are not as exact.
For this effect, I used this: <TABLE BORDER=3 CELLPADDING="10"> Cellpadding is simply the amount of free space between the border of the cell and its contents.
For this we used: <TABLE BORDER=3 CELLSPACING="10"> Cellspacing is simply the amount of free space between the cells.
We used both the cellpadding and cellspacing tags. <TABLE BORDER=3 CELLPADDING="10" CELLSPACING="10"> You can get many good effects and take up space using these tags together.
|